home *** CD-ROM | disk | FTP | other *** search
- // TILE LAYER v1.0
- // -------------------------------------------------
-
- // Some useful costant definition
- // -------------------------------------------------
-
- // General purpose constants
-
- #define MAX_STRING_LEN 48
-
- #define MAX_WORLD_X (320 - 80)
- #define MAX_WORLD_Y 200
-
- #define DEFAULT_BUF_LLENGTH 20
- #define DEFAULT_BUF_LINES 40
-
- #define BUTTONXSIZE 72
- #define BUTTONYSIZE 12
-
- // -------------------------------------------------
-
- // Commands definition
-
- enum commands {
- CMD_QUIT= -1,
- CMD_SCROLL_RIGHT= 1,
- CMD_SCROLL_LEFT,
- CMD_SCROLL_UP,
- CMD_SCROLL_DOWN,
-
- CMD_LOAD_WORLD,
- CMD_LOAD_SET,
- CMD_SAVE_WORLD,
-
- CMD_REDIM_WORLD,
- CMD_SHOW_INFO
- };
-
-
- // Errors definition
-
- enum errors {
- MEM_ERR= 0,
- LOAD_ERR,
- MOUSE_ERR
- };
-